home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue54
/
Alfresco
/
TstCrypU.dfm
/
TstCrypU.txt
Wrap
Text File
|
1999-12-12
|
2KB
|
118 lines
object Form1: TForm1
Left = 192
Top = 116
Width = 418
Height = 454
Caption = 'Form1'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
PixelsPerInch = 96
Position = poScreenCenter
OnCreate = FormCreate
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 16
Width = 35
Height = 13
Caption = 'Original'
end
object Label2: TLabel
Left = 16
Top = 152
Width = 48
Height = 13
Caption = 'Encrypted'
end
object Label3: TLabel
Left = 16
Top = 288
Width = 49
Height = 13
Caption = 'Decrypted'
end
object Label4: TLabel
Left = 237
Top = 232
Width = 18
Height = 13
Caption = 'Key'
end
object Label5: TLabel
Left = 237
Top = 176
Width = 55
Height = 13
Caption = 'Caesar shift'
end
object mOriginal: TMemo
Left = 16
Top = 32
Width = 200
Height = 100
TabOrder = 0
WantReturns = False
end
object mEncrypted: TMemo
Left = 16
Top = 168
Width = 200
Height = 100
TabStop = False
Enabled = False
TabOrder = 1
end
object mDecrypted: TMemo
Left = 16
Top = 304
Width = 200
Height = 100
TabStop = False
Enabled = False
TabOrder = 2
end
object RadioGroup1: TRadioGroup
Left = 237
Top = 32
Width = 161
Height = 113
Caption = 'Select cipher'
ItemIndex = 0
Items.Strings = (
'Caesar cipher'
'Vigen�re cipher'
'ADFGVX cipher'
'XOR cipher')
TabOrder = 3
OnClick = RadioGroup1Click
end
object edtKey: TEdit
Left = 237
Top = 248
Width = 161
Height = 21
Enabled = False
TabOrder = 4
end
object edtCaesarShift: TEdit
Left = 237
Top = 192
Width = 161
Height = 21
TabOrder = 5
Text = '3'
end
object Button1: TButton
Left = 323
Top = 376
Width = 75
Height = 25
Caption = 'Do it!'
Default = True
TabOrder = 6
OnClick = Button1Click
end
end